home *** CD-ROM | disk | FTP | other *** search
/ PC-SIG: World of Education / PC-SiG's World of Education.iso / run / 2602 / offset.hlp < prev    next >
Text File  |  1989-02-03  |  1KB  |  29 lines

  1. Offset term calculated by FITLINE for data identified with a matching
  2. 'idexpr' value.  'idexpr' must be an integer from 0 to 9 and must
  3. match some 'idexpr' value used in a previous FITLINE procedure
  4. statement.  See FITLINE procedure description.
  5.  
  6. Use the SLOPE and OFFSET values to display and/or make use of the
  7. line fit to the data by the FITLINE procedure.  DAN allows up to
  8. ten simultaneously active lines and the 'idexpr' value is used to
  9. distinguish which line your algorithm is referencing; hence, the same
  10. 'idexpr' value must be used when calling FITLINE, SLOPE, and OFFSET. 
  11. +
  12. For example, to fit a line to the data in file "fitdata" and then
  13. plot both the original data and the line on the same graph, the
  14. following algorithm could be used:
  15.  
  16.      SCALEY(fitdata) &
  17.      FITLINE (1,fitdata);      {do linear least sqs fit to 'fitdata'}
  18.           {plot original data and line fit to data }
  19.      TRACE = BOX & PLOT(fitdata) &
  20.      TRACE = LINE & PLOT( SLOPE(1)*X + OFFSET(1) );
  21.  
  22. A measure of how well the line fits the data can be determined by
  23. adding the following lines to the above algorithm:
  24.  
  25.      ERASE;      {erase prev plot so new scaling can be used}
  26.      residuals = SLOPE(1)*X + OFFSET(1) - fitdata &
  27.      SCALEY(residuals);
  28.      PLOT (residuals) & PLOT ( STD.DEV (residuals) );
  29.